介紹Android studio的RelativeLayout的對齊方式
1.常用對齊方式:
在指定元件下方:
android:layout_below="@id/名稱"
在指定元件上方:
android:layout_above="@id/名稱"
在指定元件左方:
android:toLeftOf="@id/名稱"
在指定元件右方:
android:toRightOf="@id/名稱"
2.布局方式對齊
版面置中:
android:layout_centerInParent="true"
水平置中:
android:layout_centerVertical="true"
垂直置中:
android:layout_centerHorizontal="true"
對齊指定元件的上邊界:
android:layout_alignTop="@id/名稱"
對齊指定元件的下邊界:
android:layout_alignBottom="@id/名稱"
對齊指定元件的右邊界:
android:layout_alignRight="@id/名稱"
對齊指定元件的左邊界:
android:layout_alignLeft="@id/名稱"
3.間隔對齊
離下邊界距離:
android:layout_marginBottom=" "
離上邊界距離:
android:layout_marginTop=" "
離右邊界距離:
android:layout_marginRight=" "
離左邊界距離:
android:layout_marginLeft=" "
父元素對齊
對齊父元素內左邊:
android:alignParentLeft="true"
對齊父元素內右邊:
android:alignParentRight="true"
對齊父元素內上邊:
android:alignParentTop="true"
對齊父元素內下邊:
android:alignParentBottom="true"
離父元素下邊界距離:
android:layout_paddingBottom=" "
離父元素上邊界距離:
android:layout_paddingTop=" "
離父元素右邊界距離:
android:layout_paddingRight=" "
離父元素左邊界距離:
android:layout_paddingLeft=" "